home *** CD-ROM | disk | FTP | other *** search
/ IBM OEM Software Product … CD For PC Manufacturers / IBM OEM Software - Product Sampler CD for PC Manufacturers.iso / InternetIntranets / Notes / INSTALL1.DSK / START.LSS < prev   
Text File  |  1995-11-21  |  2KB  |  87 lines

  1. ''/*********************************************************************
  2. ''
  3. ''   Module Name:   start.lss
  4. ''
  5. ''   Module Code:   TOOLKIT
  6. ''
  7. ''   Author:              
  8. ''
  9. ''   Creation Date:  Aug 31, 1993
  10. ''
  11. ''   Copyright Lotus Development Corporation, (c) 1991
  12. ''
  13. ''
  14. ''  
  15. ''   Description: 
  16. ''     Lotus script file for common install
  17. ''  
  18. ''
  19. ''   Additional authors:
  20. ''
  21. ''   Change History:
  22. ''   $Log:   //CIT/VOL1/CFLOG/logfiles/cominst/notkit/start__@.lss  $
  23. '' 
  24. ''    Rev 1.8   Oct 16 1995 10:39:22   cmoy
  25. '' separate out resources into NOTres for international
  26. '' 
  27. ''    Rev 1.7   31 Jul 1995 14:47:48   jdonohue
  28. '' Added register.lss
  29. '' 
  30. ''    Rev 1.6   08 Jun 1995 15:40:10   amontalv
  31. '' Added a check to see if toolkit initialization fails.  If it fails then stop
  32. '' all processing.
  33. '' 
  34. ''    Rev 1.5   18 May 1995 11:06:12   jdonohue
  35. '' Moved language.lss before not.lss
  36. '' 
  37. ''    Rev 1.4   17 May 1995 18:21:24   mzgripce
  38. '' remove lic.lss and add language.lss
  39. '' 
  40. ''    Rev 1.3   16 May 1995 17:06:24   glutz
  41. '' Added automate.lss
  42. '' 
  43. ''    Rev 1.2   02 May 1995 12:54:00   cmoy
  44. '' Merged c2 into cf build
  45. '' 
  46. ''    Rev 1.1   13 Apr 1995 16:45:24   mzgripce
  47. '' add share32.lss
  48. '' 
  49. ''    Rev 1.0   11 Feb 1994 10:53:12   jbrodeur
  50. '' Initial Revision
  51. ''----------------------------------------------------------------------
  52. ''   Date     Vers. Pgmr  SPR#  Change
  53. ''----------------------------------------------------------------------
  54. ''  02-01-94  0002  MMETH       added inst.lss
  55. '' !
  56. ''  9-09-93   0001  MEM         Changed Compile to Compile
  57. ''
  58. ''----------------------------------------------------------------------
  59. ''
  60. ''*********************************************************************/
  61. OPTION DECLARE
  62.  
  63. PUBLIC ToolKitInitalizeError&
  64.  
  65. sub initialize
  66.     DIM notused%
  67.  
  68.     notused = Compile ("NOTres.lss")
  69.     notused = Compile ("resource.lss")
  70.     notused = Compile ("globals.lss")
  71.     notused = Compile ("setupapi.lss") 
  72.     notused = Compile ("register.lss")
  73.     notused = Compile ("toolkit.lss")
  74.     IF NOT ToolKitInitalizeError& = 0 THEN EXIT SUB
  75.     notused = Compile ("automate.lss")
  76.     notused = Compile ("callback.lss")
  77.     notused = Compile ("share32.lss")
  78.     notused = Compile ("share.lss")
  79.     notused = Compile ("language.lss")
  80.     notused = Compile ("NOT.lss")
  81.     notused = Compile ("inst.lss")
  82.     notused = Compile ("main.lss")
  83.  
  84. end sub
  85.  
  86.  
  87.